home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
hity wydania
/
Ubuntu 9.10 PL
/
karmelkowy-koliberek-desktop-9.10-i386-PL.iso
/
casper
/
filesystem.squashfs
/
lib
/
partman
/
valid_filesystems
/
80ntfs
< prev
Wrap
Text File
|
2009-10-28
|
266b
|
24 lines
#!/bin/sh
dev=$1
id=$2
property=$3
[ -f /var/lib/partman/ntfs ] || exit 0
case $property in
formatable)
;;
existing)
[ -f $id/detected_filesystem ] || exit 0
fs=$(cat $id/detected_filesystem)
case "$fs" in
ntfs)
echo ntfs
;;
esac
;;
esac